home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 30 / Amiga Format AFCD30 (Sep 1998, Issue 114).iso / -seriously_amiga- / emulation / c64_bin2p00 / makefile < prev   
Makefile  |  1998-06-29  |  2KB  |  69 lines

  1. #
  2. #    The C64 emulator utilities.
  3. #
  4. #    Copyright 1996 by ALE.
  5. #    written by Lutz Sammer.
  6. #
  7. #    Makefile
  8. #------------------------------------------------------------------------------
  9. #    $Id: Makefile,v 1.1 1996/05/25 02:53:47 johns Exp root $
  10. #    $Log: Makefile,v $
  11. #    Revision 1.1  1996/05/25 02:53:47  johns
  12. #    Initial revision
  13. #
  14. #
  15. #------------------------------------------------------------------------------
  16.  
  17. ###############################################################################
  18. #    i486 Linux
  19. ###############################################################################
  20.  
  21. AS    = as
  22. #    Pentium GNU c (also better code for 486)
  23. CC    = gcc -m68030 -pipe
  24. #    GNU C
  25. #CC    = gcc -m68030 -malign-functions=2 -malign-jumps=2 -malign-loops=2
  26. #LDFLAGS    = -s
  27. OPTIM    = -O3 -fomit-frame-pointer
  28. DEBUG    = -g
  29. WARN    = -Wall
  30. LIBS    = 
  31. DEFINES    =
  32.  
  33. ###############################################################################
  34. #    i486 GO32 via Crosscompiler
  35. ###############################################################################
  36.  
  37. #DOSTOOLDIR    = /usr/i486-go32
  38. #AS        = $(DOSTOOLDIR)/bin/as
  39. #CC        = gcc -b i486-go32 -V 2.7.2p -m486 \
  40.             -malign-functions=4 -malign-jumps=4 -malign-loops=4 -pipe
  41. #LDFLAGS    = -s
  42. #OPTIM    = -O3 -fomit-frame-pointer
  43. #DEBUG    = -g
  44. #WARN    = -Wall
  45. #LIBS    = 
  46. #DEFINES    =
  47.  
  48. ##############################################################################
  49.  
  50. CFLAGS    = $(OPTIM) $(DEBUG) $(DEFINES) $(WARN) $(INCLUDES)
  51.  
  52. ##############################################################################
  53.  
  54. all:    bin2p00
  55.  
  56. bin2p00: bin2p00.o
  57.     $(CC) $(LDFLAGS) -o $@ $^ $(OBJS) $(LIBS)
  58.  
  59. FILES=    Makefile bin2p00.c
  60.  
  61. ##############################################################################
  62.  
  63. tar:    
  64.     tar vcfz c64-utils.tgz $(FILES)
  65.  
  66. clean:
  67.     -rm -f *.o core
  68. #    rcsclean *.c *.h *.s Makefile
  69.